home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Przegladarki internetowe / Mozilla Seamonkey 1.0.5 pl / seamonkey-1.0.5.pl-PL.win32.installer.exe / MAIL.XPI / bin / chrome / messenger.jar / content / messenger / ABSearchDialog.js next >
Encoding:
JavaScript  |  2005-07-07  |  10.6 KB  |  370 lines

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3.  *
  4.  * The contents of this file are subject to the Mozilla Public License Version
  5.  * 1.1 (the "License"); you may not use this file except in compliance with
  6.  * the License. You may obtain a copy of the License at
  7.  * http://www.mozilla.org/MPL/
  8.  *
  9.  * Software distributed under the License is distributed on an "AS IS" basis,
  10.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11.  * for the specific language governing rights and limitations under the
  12.  * License.
  13.  *
  14.  * The Original Code is Mozilla addressbook.
  15.  *
  16.  * The Initial Developer of the Original Code is
  17.  * Seth Spitzer <sspitzer@netscape.com>
  18.  * Portions created by the Initial Developer are Copyright (C) 2002
  19.  * the Initial Developer. All Rights Reserved.
  20.  *
  21.  * Contributor(s):
  22.  *
  23.  * Alternatively, the contents of this file may be used under the terms of
  24.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  25.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  26.  * in which case the provisions of the GPL or the LGPL are applicable instead
  27.  * of those above. If you wish to allow use of your version of this file only
  28.  * under the terms of either the GPL or the LGPL, and not to allow others to
  29.  * use your version of this file under the terms of the MPL, indicate your
  30.  * decision by deleting the provisions above and replace them with the notice
  31.  * and other provisions required by the GPL or the LGPL. If you do not delete
  32.  * the provisions above, a recipient may use your version of this file under
  33.  * the terms of any one of the MPL, the GPL or the LGPL.
  34.  *
  35.  * ***** END LICENSE BLOCK ***** */
  36.  
  37. var searchSessionContractID = "@mozilla.org/messenger/searchSession;1";
  38. var gSearchSession;
  39.  
  40. var nsMsgSearchScope = Components.interfaces.nsMsgSearchScope;
  41. var nsIMsgSearchTerm = Components.interfaces.nsIMsgSearchTerm;
  42. var nsMsgSearchOp = Components.interfaces.nsMsgSearchOp;
  43. var nsMsgSearchAttrib = Components.interfaces.nsMsgSearchAttrib;
  44. var nsIAbDirectory = Components.interfaces.nsIAbDirectory;
  45.  
  46. var gStatusText;
  47. var gSearchBundle;
  48. var gAddressBookBundle;
  49.  
  50. var gSearchStopButton;
  51. var gPropertiesButton;
  52. var gComposeButton;
  53. var gSearchPhoneticName = "false";
  54.  
  55. var gRDF = Components.classes["@mozilla.org/rdf/rdf-service;1"].getService(Components.interfaces.nsIRDFService);
  56.  
  57. var gSearchAbViewListener = {
  58.   onSelectionChanged: function() {
  59.     UpdateCardView();
  60.   },
  61.   onCountChanged: function(total) {
  62.     if (total == 0)
  63.       var statusText = gAddressBookBundle.getString("noMatchFound");  
  64.     else
  65.     {
  66.       if (total == 1)
  67.         var statusText = gAddressBookBundle.getString("matchFound");
  68.       else  
  69.         var statusText = gAddressBookBundle.getFormattedString("matchesFound", [total]);
  70.     }
  71.     gStatusText.setAttribute("label", statusText);
  72.   }
  73. };
  74.  
  75. function searchOnLoad()
  76. {
  77.   UpgradeAddressBookResultsPaneUI("mailnews.ui.advanced_directory_search_results.version");
  78.  
  79.   initializeSearchWidgets();
  80.   initializeSearchWindowWidgets();
  81.  
  82.   gSearchBundle = document.getElementById("bundle_search");
  83.   gSearchStopButton.setAttribute("label", gSearchBundle.getString("labelForSearchButton"));
  84.   gSearchStopButton.setAttribute("accesskey", gSearchBundle.getString("accesskeyForSearchButton"));
  85.   gAddressBookBundle = document.getElementById("bundle_addressBook");
  86.   gSearchSession = Components.classes[searchSessionContractID].createInstance(Components.interfaces.nsIMsgSearchSession);
  87.  
  88.   // initialize a flag for phonetic name search
  89.   var prefService = Components.classes["@mozilla.org/preferences-service;1"]
  90.                               .getService(Components.interfaces.nsIPrefService);
  91.   var prefBranch = prefService.getBranch(null).QueryInterface(Components.interfaces.nsIPrefBranch2);
  92.   gSearchPhoneticName =
  93.         prefBranch.getComplexValue("mail.addr_book.show_phonetic_fields", 
  94.                                    Components.interfaces.nsIPrefLocalizedString).data;
  95.  
  96.   if (window.arguments && window.arguments[0])
  97.     SelectDirectory(window.arguments[0].directory);
  98.  
  99.   // initialize globals, see abCommon.js, InitCommonJS()
  100.   abList = document.getElementById("abPopup");
  101.   gAbResultsTree = document.getElementById("abResultsTree");
  102.  
  103.   onMore(null);
  104. }
  105.  
  106. function searchOnUnload()
  107. {
  108.   CloseAbView();
  109. }
  110.  
  111. function initializeSearchWindowWidgets()
  112. {
  113.   gSearchStopButton = document.getElementById("search-button");
  114.   gPropertiesButton = document.getElementById("propertiesButton");
  115.   gComposeButton = document.getElementById("composeButton");
  116.   gStatusText = document.getElementById('statusText');
  117. }
  118.  
  119. function onSearchStop() 
  120. {
  121. }
  122.  
  123. function onAbSearchReset(event) 
  124. {
  125.   gPropertiesButton.setAttribute("disabled","true");
  126.   gComposeButton.setAttribute("disabled","true");
  127.  
  128.   CloseAbView();
  129.  
  130.   onReset(event);
  131.   gStatusText.setAttribute("label", "");
  132. }
  133.  
  134. function SelectDirectory(aURI) 
  135. {
  136.   var selectedAB = aURI;
  137.  
  138.   if (!selectedAB)
  139.     selectedAB = kPersonalAddressbookURI;
  140.  
  141.   // set popup with address book names
  142.   var abPopup = document.getElementById('abPopup');
  143.   if ( abPopup )
  144.     abPopup.value = selectedAB;
  145.  
  146.   setSearchScope(GetScopeForDirectoryURI(selectedAB));
  147. }
  148.  
  149. function GetScopeForDirectoryURI(aURI)
  150. {
  151.   var directory = gRDF.GetResource(aURI).QueryInterface(nsIAbDirectory);
  152.   var booleanAnd = gSearchBooleanRadiogroup.selectedItem.value == "and";
  153.  
  154.   if (directory.isRemote) {
  155.     if (booleanAnd)
  156.       return nsMsgSearchScope.LDAPAnd;
  157.     else 
  158.       return nsMsgSearchScope.LDAP;
  159.   }
  160.   else {
  161.     if (booleanAnd)
  162.       return nsMsgSearchScope.LocalABAnd;
  163.     else 
  164.       return nsMsgSearchScope.LocalAB;
  165.   }
  166. }
  167.  
  168. function onEnterInSearchTerm()
  169. {
  170.   // on enter
  171.   // if not searching, start the search
  172.   // if searching, stop and then start again
  173.   if (gSearchStopButton.getAttribute("label") == gSearchBundle.getString("labelForSearchButton")) { 
  174.      onSearch(); 
  175.   }
  176.   else {
  177.      onSearchStop();
  178.      onSearch();
  179.   }
  180. }
  181.  
  182. function onSearch()
  183. {
  184.     gStatusText.setAttribute("label", "");
  185.     gPropertiesButton.setAttribute("disabled","true");
  186.     gComposeButton.setAttribute("disabled","true");
  187.  
  188.     gSearchSession.clearScopes();
  189.  
  190.     var currentAbURI = document.getElementById('abPopup').getAttribute('value');
  191.  
  192.     gSearchSession.addDirectoryScopeTerm(GetScopeForDirectoryURI(currentAbURI));
  193.     saveSearchTerms(gSearchSession.searchTerms, gSearchSession);
  194.  
  195.     var searchUri = currentAbURI + "?(";
  196.  
  197.     var count = gSearchSession.searchTerms.Count();
  198.  
  199.     for (var i=0; i<count; i++) {
  200.       var searchTerm = gSearchSession.searchTerms.GetElementAt(i).QueryInterface(nsIMsgSearchTerm);
  201.  
  202.       // get the "and" / "or" value from the first term
  203.       if (i == 0) {
  204.        if (searchTerm.booleanAnd) 
  205.          searchUri += "and";
  206.        else
  207.          searchUri += "or";
  208.       }
  209.  
  210.       var attrs;
  211.  
  212.       switch (searchTerm.attrib) {
  213.        case nsMsgSearchAttrib.Name:
  214.          if (gSearchPhoneticName == "false")
  215.            attrs = ["DisplayName","FirstName","LastName","NickName","_AimScreenName"];
  216.          else
  217.            attrs = ["DisplayName","FirstName","LastName","NickName","_AimScreenName","PhoneticFirstName","PhoneticLastName"];
  218.          break;
  219.        case nsMsgSearchAttrib.DisplayName:
  220.          attrs = ["DisplayName"];
  221.          break;
  222.        case nsMsgSearchAttrib.Email:
  223.          attrs = ["PrimaryEmail"];
  224.          break;
  225.        case nsMsgSearchAttrib.PhoneNumber:
  226.          attrs = ["HomePhone","WorkPhone","FaxNumber","PagerNumber","CellularNumber"]; 
  227.          break;
  228.        case nsMsgSearchAttrib.Organization:
  229.          attrs = ["Company"];
  230.          break;
  231.        case nsMsgSearchAttrib.Department:
  232.          attrs = ["Department"];
  233.          break;
  234.        case nsMsgSearchAttrib.City:
  235.          attrs = ["WorkCity"];
  236.          break;
  237.        case nsMsgSearchAttrib.Street:
  238.          attrs = ["WorkAddress"];
  239.          break;
  240.        case nsMsgSearchAttrib.Nickname:
  241.          attrs = ["NickName"];
  242.          break;
  243.        case nsMsgSearchAttrib.WorkPhone:
  244.          attrs = ["WorkPhone"];
  245.          break;
  246.        case nsMsgSearchAttrib.HomePhone:
  247.          attrs = ["HomePhone"];
  248.          break;
  249.        case nsMsgSearchAttrib.Fax:
  250.          attrs = ["FaxNumber"];
  251.          break;
  252.        case nsMsgSearchAttrib.Pager:
  253.          attrs = ["PagerNumber"];
  254.          break;
  255.        case nsMsgSearchAttrib.Mobile:
  256.          attrs = ["CellularNumber"];
  257.          break;
  258.        case nsMsgSearchAttrib.Title:
  259.          attrs = ["JobTitle"];
  260.          break;
  261.        case nsMsgSearchAttrib.AdditionalEmail:
  262.          attrs = ["SecondEmail"];
  263.          break;
  264.        case nsMsgSearchAttrib.ScreenName:
  265.          attrs = ["_AimScreenName"];
  266.          break;
  267.        default:
  268.          dump("XXX " + searchTerm.attrib + " not a supported search attr!\n");
  269.          attrs = ["DisplayName"];
  270.          break;
  271.       }
  272.  
  273.       var opStr;
  274.  
  275.       switch (searchTerm.op) {
  276.       case nsMsgSearchOp.Contains:
  277.         opStr = "c";
  278.         break;
  279.       case nsMsgSearchOp.DoesntContain:
  280.         opStr = "!c";
  281.         break;
  282.       case nsMsgSearchOp.Is:
  283.         opStr = "=";
  284.         break;
  285.       case nsMsgSearchOp.Isnt:
  286.         opStr = "!=";
  287.         break;
  288.       case nsMsgSearchOp.BeginsWith:
  289.         opStr = "bw";
  290.         break;
  291.       case nsMsgSearchOp.EndsWith:
  292.         opStr = "ew";
  293.         break;
  294.       case nsMsgSearchOp.SoundsLike:
  295.         opStr = "~=";
  296.         break;
  297.       default:
  298.         opStr = "c";
  299.         break;
  300.       }
  301.  
  302.       // currently, we can't do "and" and "or" searches at the same time
  303.       // (it's either all "and"s or all "or"s)
  304.       var max_attrs = attrs.length;
  305.  
  306.       for (var j=0;j<max_attrs;j++) {
  307.        // append the term(s) to the searchUri
  308.        searchUri += "(" + attrs[j] + "," + opStr + "," + encodeURIComponent(searchTerm.value.str) + ")";
  309.       }
  310.     }
  311.  
  312.     searchUri += ")";
  313.     SetAbView(searchUri, null, null);
  314. }
  315.  
  316. // used to toggle functionality for Search/Stop button.
  317. function onSearchButton(event)
  318. {
  319.     if (event.target.label == gSearchBundle.getString("labelForSearchButton"))
  320.         onSearch();
  321.     else
  322.         onSearchStop();
  323. }
  324.  
  325. function GetAbViewListener()
  326. {
  327.   return gSearchAbViewListener;
  328. }
  329.  
  330. function onProperties()
  331. {
  332.   AbEditSelectedCard();
  333. }
  334.  
  335. function onCompose()
  336. {
  337.   AbNewMessage();
  338. }
  339.  
  340. function AbResultsPaneDoubleClick(card)
  341. {
  342.   AbEditCard(card);
  343. }
  344.  
  345. function UpdateCardView()
  346. {
  347.   var numSelected = GetNumSelectedCards();
  348.  
  349.   if (!numSelected) {
  350.     gPropertiesButton.setAttribute("disabled","true");
  351.     gComposeButton.setAttribute("disabled","true");
  352.     return;
  353.   }
  354.  
  355.   gComposeButton.removeAttribute("disabled");
  356.  
  357.   if (numSelected == 1) 
  358.     gPropertiesButton.removeAttribute("disabled");
  359.   else
  360.     gPropertiesButton.setAttribute("disabled","true");
  361. }
  362.  
  363. function onChooseDirectory(event) 
  364. {
  365.     var directoryURI = event.id;
  366.     if (directoryURI) {
  367.         SelectDirectory(directoryURI);
  368.     }
  369. }
  370.